home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / tikiwiki_xss.nasl < prev    next >
Text File  |  2005-03-31  |  2KB  |  65 lines

  1. #
  2. # This script was written by David Maciejak <david dot maciejak at kyxar dot fr>
  3. # Ref: Florian Hengartner <hengartnerf@users.sourceforge.net>
  4. # This script is released under the GNU GPLv2
  5. #
  6.  
  7. if(description)
  8. {
  9.   script_id(15709);
  10.   if ( defined_func("script_xref") ) script_xref(name:"OSVDB", value:7449);
  11.   
  12.   script_version("$Revision: 1.3 $");
  13.   script_name(english:"TikiWiki tiki-error.php XSS");
  14.  
  15.  
  16.  desc["english"] = "
  17. The remote host is running Tiki Wiki, a content management 
  18. system written in PHP.
  19.  
  20. The remote version of this software is vulnerable to cross-site 
  21. scripting attacks in tiki-error.php script due to a lack of user 
  22. input sanitization.
  23.  
  24. Solution: Upgraded to version 1.7.8 or newer
  25. Risk factor : Medium";
  26.  
  27.   script_description(english:desc["english"]);
  28.  
  29.   script_summary(english:"Checks TikiWiki version");
  30.   script_category(ACT_GATHER_INFO);
  31.   script_copyright(english:"This script is Copyright (C) 2004 David Maciejak");
  32.   script_family(english:"CGI abuses : XSS");
  33.   script_dependencie("http_version.nasl");
  34.   script_require_ports("Services/www");
  35.   exit(0);
  36. }
  37.  
  38. #now the code
  39.  
  40. include("http_func.inc");
  41. include("http_keepalive.inc");
  42.  
  43. port = get_http_port(default:80);
  44.  
  45. if(!get_port_state(port))exit(0);
  46. if(!can_host_php(port:port))exit(0);
  47.  
  48. function check(loc)
  49. {
  50.  req = http_get(item: loc + "/tiki-index.php", port:port);
  51.  r = http_keepalive_send_recv(port:port, data:req, bodyonly:1);
  52.  if( r == NULL )exit(0);
  53.  if( "This is Tiki v" >< r && egrep(pattern:"This is Tiki v(0\.|1\.[0-6]\.|1\.7\.[0-7][^0-9])", string:r) )
  54.  {
  55.      security_warning(port);
  56.     exit(0);
  57.  }
  58. }
  59.  
  60. foreach dir (cgi_dirs())
  61. {
  62.  check(loc:dir);
  63. }
  64.